/* Base styles */
:root {
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;
  
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  
  --red-500: #ef4444;
  --red-600: #dc2626;
  
  --border-radius: 0.5rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
table {display: table;}
/* Hero section */
.hero-section {
  position: relative;
  background: linear-gradient(to bottom right, var(--gray-900), var(--gray-800), var(--gray-900));
  border-radius: var(--border-radius);
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--gray-800);
  box-shadow: var(--shadow-lg);
  margin-bottom: 30px;
  width: 100%;
}

.hero-bg-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  background-color: var(--green-900);
  filter: blur(30px);
}

.hero-bg-element-1 {
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  transform: translate(25%, -25%);
}

.hero-bg-element-2 {
  bottom: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  transform: translate(-25%, 25%);
}

.hero-content1 {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--green-400);
  margin-bottom: 0.5rem;
}

.hero-description {
  color: var(--gray-300);
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.comparison-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .comparison-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-card {
  background-color: rgba(31, 41, 55, 0.8);
  backdrop-filter: blur(4px);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.wordpress-card {
  border: 1px solid var(--gray-700);
}

.veegam-card {
  background: linear-gradient(to bottom right, var(--gray-800), var(--gray-900));
  border: 1px solid rgba(20, 83, 45, 0.5);
}

.recommended-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background-color: var(--green-600);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.card-logo {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.card-logo img {
  width: 2rem;
  height: 2rem;
}

.veegam-logo {
  background-color: rgba(20, 83, 45, 0.5);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-200);
}

.veegam-title {
  color: var(--green-400);
}

.card-subtitle {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.veegam-subtitle {
  color: rgba(134, 239, 172, 0.8);
}

.progress-container {
  margin-bottom: 1rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: var(--gray-300);
}

.progress-percentage {
  font-weight: 500;
}

.progress-bar1 {
  width: 100%;
  height: 0.75rem;
  background-color: var(--gray-700);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  transition: width 1s ease;
}

.wordpress-fill {
  background-color: var(--gray-500);
}

.veegam-fill {
  background-color: var(--green-600);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--gray-300);
}

.feature-disabled {
  color: var(--gray-500);
}

.feature-check, .feature-x {
  margin-right: 0.5rem;
  width: 1rem;
  text-align: center;
}

.feature-check {
  color: var(--gray-400);
}

.veegam-card .feature-check {
  color: var(--green-500);
}

.feature-x {
  color: var(--red-500);
}

/* Comparison table */
.comparison-table-card {
  background-color: var(--gray-900);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-800);
  overflow: hidden;
  margin-bottom: 30px;
  width: 100%;
}

.table-header {
  background: linear-gradient(to right, var(--gray-900), var(--gray-800));
  border-bottom: 1px solid var(--gray-800);
  padding: 1.5rem;
}

.table-header-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .table-header-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.table-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-400);
}

.table-description {
  color: var(--gray-400);
}

.table-stats {
  display: flex;
  gap: 1rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
}

.stat-bar-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-bar {
  width: 6rem;
  height: 0.5rem;
  background-color: var(--gray-800);
  border-radius: 9999px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  transition: width 1s ease;
}

.wordpress-stat {
  background-color: var(--gray-500);
}

.veegam-stat {
  background-color: var(--green-600);
}

.stat-percentage {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
}

.tabs {
  width: 100%;
}

.tabs-list {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--gray-800);
  background-color: var(--gray-900);
}

.tab-button {
  background: none;
  border: none;
  padding: 1rem;
  color: var(--gray-400);
  font-size: 0.875rem;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.tab-button:hover {
  color: var(--gray-300);
}

.tab-button.active {
  color: var(--green-400);
  border-bottom: 2px solid var(--green-500);
}

.tab-button i {
  font-size: 0.875rem;
}

.tab-content {
  display: none;
  overflow-x: auto;
}

.tab-content.active {
  display: block;
}

.feature-table {
  width: 100%;
  border-collapse: collapse;
}

.feature-table th {
  background-color: var(--gray-800);
  padding: 0.75rem;
  text-align: left;
  color: var(--gray-300);
  border-bottom: 1px solid var(--gray-700);
}

.platform-column {
  width: 25%;
  text-align: center;
}

.feature-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--gray-800);
  color: var(--gray-300);
  text-align: left;
}

.category-row {
  background: linear-gradient(to right, var(--gray-800), var(--gray-900));
}

.category-cell {
  font-weight: 500;
  color: var(--gray-300);
}

.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(20, 83, 45, 0.3);
  color: var(--green-400);
  border: 1px solid var(--green-800);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
}

.category-icon {
  color: var(--green-500);
}

.feature-row:nth-child(even) {
  background-color: rgba(31, 41, 55, 0.5);
}

.feature-row:nth-child(odd) {
  background-color: var(--gray-900);
}

.feature-name {
  display: flex;
  align-items: center;
}

.feature-info {
  margin-left: 0.5rem;
  color: var(--gray-500);
  cursor: help;
  position: relative;
}

.feature-info:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gray-800);
  color: var(--gray-200);
  border: 1px solid var(--gray-700);
  padding: 0.5rem;
  border-radius: 0.25rem;
  width: max-content;
  max-width: 20rem;
  z-index: 10;
  font-size: 0.75rem;
}

/*.check-icon, .x-icon {
  display: flex;
  justify-content: center;
}*/

.check-icon i {
  color: var(--green-500);
}

.veegam-check {
  display: inline-flex;
  background-color: rgba(20, 83, 45, 0.5);
  border-radius: 9999px;
  padding: 0.25rem;
}

.veegam-check i {
  color: var(--green-400);
}

.x-icon i {
  color: var(--red-500);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to right, var(--green-900), var(--green-800));
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(20, 83, 45, 0.5);
  width: 100%;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.cta-description {
  margin-bottom: 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--gray-200);
}

.cta-button {
  background-color: var(--gray-900);
  color: var(--green-400);
  border: 1px solid rgba(20, 83, 45, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: sofia-pro;
}

.cta-button:hover {
  background-color: var(--gray-800);
}

/* Animations */
.animate-fade-in {
  opacity: 0;
  transform: translateY(1.25rem);
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-scale {
  transform: scale(0);
  animation: scaleIn 0.3s forwards;
}

@keyframes scaleIn {
  to {
    transform: scale(1);
  }
}

.feature-animate {
  opacity: 0;
  transform: translateX(-0.625rem);
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}